Fullerton Small Amp Load Line

In this notebook, we'll determine the small amp OPT requirements


The plate-plate impedence for 6K6GT is 12K$\Omega$ and 6V6GT is 10K$\Omega$


In [2]:
import numpy as np

In [20]:
# see http://www.vintagewindings.com/gen%20pop/8299543VW8335/TransDesign%201/OP-Trans%20Winding.pdf

rp = 100000
rpp = 12000 / 2.0
w   = 80 
Lp = ((rpp*rp)/(rpp+rp)) / (2 * np.pi * w)
print "%.1fH"%Lp


11.3H

candidates GXPP10-8-10K GXPP15-8-8K


In [18]:
Lp = 16.0
w = ((rpp*rp)/(rpp+rp)) / (2 * np.pi * Lp)
print "%.1fHz"%w


56.3Hz

In [ ]: